博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PageHelper分页插件及通用分页js
阅读量:6160 次
发布时间:2019-06-21

本文共 5807 字,大约阅读时间需要 19 分钟。

 分页概述

1.物理分页

物理分页依赖的是某一物理实体,这个物理实体就是数据库,比如MySQL数据库提供了limit关键字,程序员只需要编写带有limit关键字的SQL语句,数据库返回的就是分页结果。建议使用。

2.逻辑分页

逻辑分页依赖的是程序员编写的代码。数据库返回的不是分页结果,而是全部数据,然后再由程序员通过代码获取分页数据,常用的操作是一次性从数据库中查询出全部数据并存储到List集合中,因为List集合有序,再根据索引获取指定范围的数据。

MyBatis 分页插件 - PageHelper

该插件目前支持以下数据库的物理分页:

  1. Oracle
  2. Mysql
  3. MariaDB
  4. SQLite
  5. Hsqldb
  6. PostgreSQL
  7. DB2
  8. SqlServer(2005,2008)
  9. Informix
  10. H2
  11. SqlServer2012
  12. Derby
  13. Phoenix

分页插件 5.0

由于分页插件 5.0 版本和 4.2.x 实现完全不同,所以 master 分支为 5.x 版本,4.2 作为一个分支存在,如果有针对 4.2 的 PR,请注意提交到分支版本。

集成

使用 PageHelper 你只需要在 classpath 中包含  和 。

如果你使用 Maven,你只需要在 pom.xml 中添加下面的依赖:

com.github.pagehelper
pagehelper
最新版本

本次开发环境:JDK1.8+MySql5.0+Mybatis-pagehelper4.2.1+maven

注意maven中的其他依赖的版本可能会影响该插件,导致引入失败

使用步骤

1.在maven pom.xml中添加依赖

2.在Mybatis-config.xml中sqlSessionFactory中添加插件配置

dialect=mysql

3.写sql、service

public PageInfo
selectByUnitId(Integer id,Integer currPage,Integer pageSize) { PageHelper.startPage(currPage,pageSize);//当前页面编号+(从第0页开始),每页的大小 PageInfo
pageInfo = new PageInfo
(studentDao.selectByUnitId(id)); return pageInfo; } 建议sql不要这样简单粗暴的查询 sql:select * from student; 即使如此pageHelper插件也会自动的查询指定的条数 PageInfo:大致包含以下信息:{pageNum=1, pageSize=5, size=5, startRow=1, endRow=5, total=10, pages=2, list{...}} 每次查询之后将指定条数的数据放在PageInfo中。 在Controller层 把pageInfo放在requestScope中,命名student(与下文同)

 这样就可以根据pageNum输出指定的信息

jsp:分页标签

这是一个完整的分页标签,只要更改参数即可                           

js:分页代码

function createPaginationNav(e, t, a, n, p, o, i, s) {    null == e && (e = ""), e = e.replace(/\&currPage=\d+\&/, "&"), e = e.replace(/\&?currPage=\d+\&?/, "");    var r = e.length;    r > 0 && "?" == e.charAt(r - 1) && (e = e.replace("?", "")), null == i && (i = ""), "undefined" == typeof s && (s = 10);    var g = s,        l = e,        f = l.indexOf("?");    if (l += f > 0 ? "&currPage=" : "?currPage  =", document.write('第' + t + "页 "), document.write('共' + p + "页 "), p > 1) {        1 == t ? (document.write('首页'), document.write('<<')) : (document.write('首页'), document.write('<<'));        var d = 1;        if (p > g) {            var u = 0,                c = 0,                m = Math.round(g / 2);            for (d = p / g + 1, t > m && p - m >= t ? (u = t - m, c = t + m - 1) : m >= t ? (u = 1, c = g) : (u = p - g + 1, c = p), c > p && (c = p), ipage = u; c >= ipage; ipage++) p >= ipage && document.write(t == ipage ? '' + ipage + "" : '' + ipage + "")        } else            for (ipage = 1; p >= ipage; ipage++) document.write(t == ipage ? '' + ipage + "" : '' + ipage + "");        t == p ? (document.write('>>'), document.write('尾页')) : (document.write('>>'), document.write('尾页')), document.write('  GOTO')    }}function goto_page(e, t) {    var a = /^[0-9]+$/;    return gotoInputId = "gotopage" + t, a.test(document.getElementById(gotoInputId).value) ? void(location.href = e + document.getElementById(gotoInputId).value) : (alert("请输入数字!"), document.getElementById(gotoInputId).value = "", !1)} //在jsp中调用此函数
 

 

MyBatis plus通用Mapper实现分页

安装:

逻辑分页 private ApplicationContext ioc =                new ClassPathXmlApplicationContext("applicationContext.xml");    private EmployeeMapper employeeMapper=            ioc.getBean("employeeMapper", EmployeeMapper.class);    //5. 分页查询page集成rowBounds  Page(currPage,Pagesize);(内存分页)     List
emps = employeeMapper.selectPage(new Page<>(3, 2), null);     System.out.println(emps);

 使用Mybatisplus插件中的PageIntercepter插件实现物理分页

 

//测试分页 public void testPaginationInterceptor(){
IPage
pages =employeeMapper.selectPage(new Page<>(1,5),null);//即可实现分页 System.out.println(pages.getRecords()); } sql执行:说明这是一个实实在在的物理分页 DEBUG 10-02 11:37:07,239 ==>  Preparing: SELECT id,last_name AS lastName,email,gender,age FROM tbl_employee LIMIT 0,5  IPage对象的方法: default IPage
setPages(long pages) {
return this; } List
getRecords(); IPage
setRecords(List
var1); long getTotal(); IPage
setTotal(long var1); long getSize(); IPage
setSize(long var1); long getCurrent(); IPage
setCurrent(long var1);

 

 

 

 

转载地址:http://iasfa.baihongyu.com/

你可能感兴趣的文章
EL/JSTL入门笔记
查看>>
重新格式化namenode后,出现java.io.IOException Incompatible clusterIDs
查看>>
JS中异步和单线程
查看>>
Fiddler手机抓包工具如何设置过滤域名?
查看>>
C++永久对象存储 (Persistent Object Storage for C++)
查看>>
bzoj题解
查看>>
学习java随笔第七篇:java的类与对象
查看>>
Myeclipse启动不了的解决方法
查看>>
iOS 8 新特性概览
查看>>
ios开发之 -- xib关联自定义view
查看>>
蓝牙开发<coreBluetooth/CoreBluetooth.h>
查看>>
SharePoint PowerShell命令系列 (6) Get-SPSite & Set-SPSite
查看>>
【转】Java 并发:Executors 和线程池
查看>>
2019年 Gratner数据分析平台对比 - PowerBI大幅领先
查看>>
贪心 Codeforces Round #288 (Div. 2) B. Anton and currency you all know
查看>>
Linux如何统计进程的CPU利用率
查看>>
Spring 初体验
查看>>
Sql Server (MSSQLSERVER) 服务无法启动
查看>>
几款LINUX下的CHM查看器
查看>>
RGB颜色值转化为long 型数字
查看>>